home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / zfname.c < prev    next >
C/C++ Source or Header  |  1995-11-15  |  3KB  |  107 lines

  1. /* Copyright (C) 1993 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zfname.c */
  20. /* File name utilities */
  21. #include "memory_.h"
  22. #include "ghost.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "ialloc.h"
  26. #include "stream.h"
  27. #include "gxiodev.h"            /* must come after stream.h */
  28. #include "fname.h"
  29.  
  30. /* Parse a file name into device and individual name. */
  31. /* The device may be NULL, or the name may be NULL, but not both. */
  32. /* According to the Adobe documentation, %device and %device% */
  33. /* are equivalent; both return name==NULL. */
  34. int
  35. parse_file_name(const ref *op, parsed_file_name *pfn)
  36. {    const byte *pname;
  37.     uint len, dlen;
  38.     const byte *pdelim;
  39.     gx_io_device *iodev;
  40.  
  41.     check_read_type(*op, t_string);
  42.     len = r_size(op);
  43.     pname = op->value.const_bytes;
  44.     if ( len == 0 )
  45.         return_error(e_undefinedfilename);
  46.     if ( pname[0] != '%' )    /* no device */
  47.       { pfn->iodev = NULL;
  48.         pfn->fname = (const char *)pname;
  49.         pfn->len = len;
  50.         return 0;
  51.       }
  52.     pdelim = (const byte *)memchr(pname + 1, '%', len - 1);
  53.     if ( pdelim == NULL )    /* %device */
  54.       dlen = len;
  55.     else if ( pdelim[1] == 0 ) /* %device% */
  56.       { pdelim = NULL;
  57.         dlen = len;
  58.       }
  59.     else
  60.       { dlen = pdelim - pname;
  61.         pdelim++, len--;
  62.       }
  63.     iodev = gs_findiodevice(pname, dlen);
  64.     if ( iodev == 0 )
  65.       return_error(e_undefinedfilename);
  66.     pfn->iodev = iodev;
  67.     pfn->fname = (const char *)pdelim;
  68.     pfn->len = len - dlen;
  69.     return 0;
  70. }
  71.  
  72. /* Parse a real (non-device) file name and convert to a C string. */
  73. int
  74. parse_real_file_name(const ref *op, parsed_file_name *pfn, client_name_t cname)
  75. {    int code = parse_file_name(op, pfn);
  76.     if ( code < 0 )
  77.         return code;
  78.     if ( pfn->len == 0 )
  79.         return_error(e_invalidfileaccess); /* device only */
  80.     return terminate_file_name(pfn, cname);
  81. }
  82.  
  83. /* Convert a file name to a C string by adding a null terminator. */
  84. int
  85. terminate_file_name(parsed_file_name *pfn, client_name_t cname)
  86. {    uint len = pfn->len;
  87.     ref fnref;
  88.     const char *fname;
  89.     if ( pfn->iodev == NULL )     /* no device */
  90.         pfn->iodev = iodev_default;
  91.     fnref.value.const_bytes = (const byte *)pfn->fname;
  92.     r_set_size(&fnref, len);
  93.     fname = ref_to_string(&fnref, imemory, cname);
  94.     if ( fname == 0 )
  95.         return_error(e_VMerror);
  96.     pfn->fname = fname;
  97.     pfn->len = len + 1;    /* null terminator */
  98.     return 0;
  99. }
  100.  
  101. /* Free a file name that was copied to a C string. */
  102. void
  103. free_file_name(parsed_file_name *pfn, client_name_t cname)
  104. {    if ( pfn->fname != 0 )
  105.       ifree_string((byte *)pfn->fname, pfn->len, cname);
  106. }
  107.